Create the function calls for the function 'esante.insert_code_description' from the excel sheet, delivered by the Agence eSanté. 

FOR DocType (typeCode):
  1. Mark the cells in the eSanté excel sheet, containing the codes and its translations. Make sure, you copy the parent Lvl-Typ (or the "Related ClassCode" for DocType).
  2. Copy them to the clipboard
  3. Paste them into a TextEditor that can replace with regular expressions (like Notepad++)
  4. Make sure we only have \n as line separator:
     Replace all:	\r(\n)?					with:	\n
  5. Remove the line breaks in the description
     Replace all:	\n(?!(\t|\d))			with:	\\n
  6. Remove the quotes around the descriptions that contain line breaks
     Replace all:	(?<=\t)"([^\t]*)"(?=($|\t))				with:	$1
  7. Remove the classCode description and only leave the classCode code
     Replace all:	(?<=^)(\d+), (\w| )+\t	with:	$1\t
  8. Duplicate the single quotes for SQL
     Replace all:	'						with:	''
  9. Put the content of the cells in the correct order into the script as parameters
     Replace all:	(?<=^)([^\t\n]*)\t([^\t\n]*)\t([^\t\n]*)\t([^\t\n]*)\t([^\t\n]*)\t([^\t\n]*)\t([^\t\n]*)(?=$)
     with:			SELECT esante.insert_code_description\(E'$2', E'1.3.182.10.10.1', E'$3', E'$4', E'$5', E'$6', E'$7', null, null, E'$1'\);
  10. Relace the empty strings with null
     Replace all:	E''						with:	null


FOR other codes:
  TODO ...
  